944dca521119aecc8d3b5d362988b35ea40c3635,src/org/jgroups/blocks/DistributedHashtable.java,DistributedHashtable,put,#Object#Object#,270

Before Change


        if(send_message == true) {
            try {
                put_method.setArgs(new Object[]{key,value});
                disp.callRemoteMethods(
                        null,
                        put_method,
                        GroupRequest.GET_ALL,
                        0);
            }
            catch(Exception e) {
                //return null;

After Change


        //if true, propagate action to the group
        if(send_message == true) {
            try {
                disp.callRemoteMethods(
                        null, "_put", new Object[]{key,value},
                        put_signature,
                        GroupRequest.GET_ALL,
                        0);
            }
            catch(Exception e) {
                //return null;